home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-12-20 | 892 b | 14 lines | [TEXT/MPS ] |
- ;;; This is a generic "pronounceable name" generator.
- ;;; Doesn't have any particular flavor, although the weights are
- ;;; tilted towards English.
-
- (namer generic-names (grammar root 9
- (root (or 5 (syllable " " root)
- 30 (syllable syllable)
- 20 (syllable syllable syllable)
- 50 (syllable root)))
- (syllable (or (start vowel) (vowel end) 3 (start vowel end)))
- (start (or 3 initdiph 7 consonant))
- (end (or 2 enddiph 8 consonant))
- (vowel (or 5 a 9 e 2 i 3 o 2 u y))
- (consona